home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / time / bigtime / bin / user / usertemplate_functions.c < prev    next >
C/C++ Source or Header  |  1995-10-19  |  2KB  |  73 lines

  1. /* --------------------------------------------------------------------------- */
  2. /*    Name: UserTemplate_Functions.c
  3.  *  Author: aleph NULL (Silicon Based Life)
  4.  *    Date: 8/10/95
  5.  * Comment: (c) Copyright 1995 Silicon Based Life
  6.  *        :
  7.  */
  8. /* --------------------------------------------------------------------------- */
  9. /* #includes */
  10.  
  11. #include "UserTemplate_protos.h"
  12.  
  13. /* --------------------------------------------------------------------------- */
  14. /* Functions */
  15.  
  16. BOOL InitUserClock( void )
  17. {
  18.  printf("Open libraries etc.\n");
  19. }
  20.  
  21. /* --------------------------------------------------------------------------- */
  22.  
  23. void FreeUserClock( void )
  24. {
  25.  printf("Close libraries etc.\n");
  26.  
  27. }
  28.  
  29. /* --------------------------------------------------------------------------- */
  30.  
  31. void OpenUserClock( void )
  32. {
  33.  printf("Open the clocks window etc.\n");
  34. }
  35.  
  36. /* --------------------------------------------------------------------------- */
  37.  
  38. void CloseUserClock( void )
  39. {
  40.  printf("Close the clocks window etc.\n");
  41. }
  42.  
  43. /* --------------------------------------------------------------------------- */
  44.  
  45. void UpdateUserClock( void )
  46. {
  47.  printf("Update the time shown in the clock window.\n");
  48. }
  49.  
  50. /* --------------------------------------------------------------------------- */
  51.  
  52. void OpenUserClockPrefs( void )
  53. {
  54.  printf("Open the clocks preference window.\n");
  55. }
  56.  
  57. /* --------------------------------------------------------------------------- */
  58.  
  59. void ChimeUserClock( void )
  60. {
  61.  printf("Cause the clock to chime etc.\n");
  62. }
  63.  
  64. /* --------------------------------------------------------------------------- */
  65.  
  66. void AlarmUserClock( void )
  67. {
  68.  printf("Cause the clock to alarm!.\n");
  69. }
  70.  
  71. /* --------------------------------------------------------------------------- */
  72.  
  73.